home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / sectools / SRS / server / src / Makefile.am < prev    next >
Encoding:
Makefile  |  2000-01-12  |  619 b   |  22 lines

  1. AUTOMAKE_OPTIONS = foreign
  2.  
  3. bin_PROGRAMS = server
  4.  
  5. server_SOURCES = auth.c config.c convert.c clientdata.c debug.c error.c \
  6.                  exit.c init.c io.c main.c misc.c parse.c ping.c        \
  7.                  sighandlers.c sockets.c ssl.c stream.c
  8.  
  9. # Use this if we want to define it ourselves
  10. # CC = gcc
  11.  
  12. # Use this to define our own definitions
  13. DEFS1 = $(DEFS) $(LDEFS)# -DNOSSL# -DDEBUG
  14.  
  15. INCS = -I../include -I../../SSL/include -I/usr/local/ssl/include
  16.  
  17. # (we use our own CLFAGS because autoconf uses -O2)
  18. CFLAGS = -Wall -g -pedantic# -posix -ansi
  19. COMPILE = $(CC) $(DEFS1) $(INCS) $(CFLAGS)
  20.  
  21. CLEANFILES = log
  22.